* Makefile.in (src/Makefile): Don't bother exiting single quotes
authorJim Blandy <jimb@redhat.com>
Thu, 17 Jun 1993 02:54:43 +0000 (02:54 +0000)
committerJim Blandy <jimb@redhat.com>
Thu, 17 Jun 1993 02:54:43 +0000 (02:54 +0000)
and entering double quotes to get the values of LD_SWITCH_X_SITE
and the other make variables; make substitutes them in anyway.

Makefile.in

index 101fd8d75d25ce402bbb916601195f946c47e19a..0f67123d62bc9a770b1f43ebb31fc037dfd013ef 100644 (file)
@@ -276,13 +276,13 @@ src/Makefile: ${srcdir}/src/Makefile.in Makefile
          echo "# Emacs build tree instead, or editing" ;               \
          echo "# \`${srcdir}/src/Makefile.in' itself." ;               \
          sed < ${srcdir}/src/Makefile.in                               \
-         -e 's|^\(srcdir *=\).*$$|\1'"${srcdir}"'/src|'                \
-         -e 's|^\(VPATH *=\).*$$|\1'"${srcdir}"'/src|'                 \
-         -e 's|^CC *=.*$$|CC='"${CC}"'|'                               \
-         -e 's|^CPP *=.*$$|CPP='"${CPP}"'|'                            \
-         -e 's|^LN_S *=.*$$|LN_S='"${LN_S}"'|'                         \
-         -e 's|^CFLAGS *=.*$$|CFLAGS='"${CFLAGS}"'|'                   \
-         -e 's|^\(LD_SWITCH_X_SITE *=\).*$$|\1'"${LD_SWITCH_X_SITE}"'|'        \
+         -e 's|^\(srcdir *=\).*$$|\1${srcdir}/src|'                    \
+         -e 's|^\(VPATH *=\).*$$|\1${srcdir}/src|'                     \
+         -e 's|^CC *=.*$$|CC=${CC}|'                                   \
+         -e 's|^CPP *=.*$$|CPP=${CPP}|'                                \
+         -e 's|^LN_S *=.*$$|LN_S=${LN_S}|'                             \
+         -e 's|^CFLAGS *=.*$$|CFLAGS=${CFLAGS}|'                       \
+         -e 's|^\(LD_SWITCH_X_SITE *=\).*$$|\1${LD_SWITCH_X_SITE}|'    \
          -e '/^# DIST: /d') > src/Makefile.tmp
        @${srcdir}/move-if-change src/Makefile.tmp src/Makefile
        chmod -w src/Makefile